home *** CD-ROM | disk | FTP | other *** search
/ Cream of the Crop 26 / Cream of the Crop 26.iso / program / ccdl150l.zip / ALLOC / STRDUP.C < prev    next >
C/C++ Source or Header  |  1997-03-10  |  180b  |  13 lines

  1. /*
  2.  * strdup.c
  3.  */
  4.  
  5. #include <stdlib.h>
  6. #include <string.h>
  7.  
  8. char *strdup(const char *string)
  9. {
  10.     char *rv = malloc(strlen(string)+1);
  11.     strcpy(rv,string);
  12.   return rv;
  13. }